home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / libdwarf / dwarf_die_deliv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  545 b   |  27 lines

  1. /*
  2.     dwarf_die_deliv.h
  3.  
  4.     $Revision: 1.9 $      $Date: 1993/08/16 23:17:36 $
  5. */
  6.  
  7.  
  8. /*
  9.     This struct holds information about a abbreviation.
  10.     It is put in the hash table for abbreviations for
  11.     a compile-unit.
  12. */
  13. struct Dwarf_Abbrev_List_s {
  14.  
  15.     Dwarf_Word                  ab_code;
  16.     Dwarf_Half                ab_tag;
  17.     Dwarf_Half                ab_has_child;
  18.  
  19.     /* 
  20.         Points to start of attribute and form pairs in
  21.         the .debug_abbrev section for the abbrev.
  22.     */
  23.     Dwarf_Byte_Ptr                     ab_abbrev_ptr;
  24.  
  25.     struct Dwarf_Abbrev_List_s        *ab_next;
  26. };
  27.